Re-roll #52: Klima category (11 topics) - #67
Merged
Conversation
Topic PRs all converged on the same three central files (content/<subject>/index.ts, app/[subject]/[category]/[topic]/page.tsx, README.md), so any two open topic PRs were guaranteed to conflict. This refactor splits the registries so each PR only touches files it owns. Per-category content modules - Add content/<subject>/categories/<category>.ts files that import their own topics and export the Category object. - Slim content/matematik/index.ts and content/geografi/index.ts to just compose the category list. They only change when a brand-new category is added. - Adding a topic to an existing category now touches a single shared file (its category file) instead of the subject index. Per-topic demo components - Replace the string-keyed demoKey field on Topic with an optional demoComponent: ComponentType reference. - Each topic file imports its own demo component and sets it on the Topic object. - Remove the central TOPIC_DEMO_COMPONENTS record in app/[subject]/[category]/[topic]/page.tsx; the page reads topic.demoComponent directly. Topic PRs no longer touch the page file at all. Docs - Document the new "adding a topic" workflow in AGENTS.md so future topic PRs land in the per-category file and the per-topic demo field, keeping the shared surface minimal. Build still produces 131/131 static routes.
…per-category content structure from #61.
Resolve conflict on content/geografi/index.ts caused by #61 squash- merge. Kept klima category import + array entry.
rastermanden
marked this pull request as ready for review
May 13, 2026 15:20
rastermanden
pushed a commit
that referenced
this pull request
May 13, 2026
Re-resolve content/geografi/index.ts after #67 (klima) merged. Final categories: [naturgeografi, pladetektonik, regioner, demografi, geopolitik, klima].
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Re-rolls #52 onto the per-category content structure introduced in #61 (
claude/per-category-content-modules).content/geografi/klima/(no demos).content/geografi/categories/klima.tsmirroring the shape ofregioner.ts/demografi.ts.klimaincontent/geografi/index.tsalongsideregioneranddemografi.app/[subject]/[category]/[topic]/page.tsx— the new structure has no central demo registry.README.md(left for a separate follow-up).Topics added (Copilot's order)
vejr-vs-klima(vejrVsKlima)klimaets-elementer(klimaetsElementer)atmosfaerens-opbygning(atmosfaerensOpbygning)globale-vindsystemer(globaleVindsystemer)klimazoner(klimazoner)koeppens-klimaklassifikation(koeppensKlimaklassifikation)havstroemme(havstroemme)drivhuseffekten(drivhuseffekten)klimaforandringer(klimaforandringer)klimatilpasning(klimatilpasning)el-nino-la-nina(elNinoLaNina)Build status
npm run buildsucceeds, generating 176/176 static pages (includes 11 new topic pages and 11 new quiz pages under/geografi/klima/..., plus legacy redirect routes).npx tsc --noEmitclean apart from the pre-existinglib/maal-og-enheder.test.ts(11,8): error TS5097.Note on diff
Until #61 lands, the diff against
mainalso contains #61's changes. Once #61 merges, only the new content files plus the smallcontent/geografi/index.tsupdate will remain.Supersedes #52 (close once merged).
Generated by Claude Code